

/* ========================= */
/* إعدادات عامة */
/* ========================= */
body {
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif;
  direction: rtl;
  background-color: #f4e9d8; /* بيج رملي */
  color: #3b2f2f; /* بني غامق */
  line-height: 1.8;
}

/* ========================= */
/* الهيدر */
/* ========================= */
header {
  background-color: #1c2c44; /* كحلي */
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column; /* يخلي الاسم فوق والروابط تحت */
  align-items: center;
  border-bottom: 4px solid #b87333; /* برونزي */
}

.site-logo h1 {
  margin: 0;
  font-size: 28px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* الروابط كأيقونات */
nav {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

nav a {
  background-color: rgba(255,255,255,0.1); /* خلفية شفافة لكل أيقونة */
  padding: 10px 15px;
  border-radius: 8px;
  color: #f4e9d8;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

nav a:hover {
  background-color: rgba(184,115,51,0.7); /* برونزي شفاف عند المرور */
  color: #fff;
}

/* ========================= */
/* قسم الـ Hero */
/* ========================= */
.hero {
  background: url("D:/my website/image/001125-TaqKasra-Iraq-IMG_7940-2.jpg") no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  background-color: rgba(0,0,0,0.5); /* خلفية شفافة */
  width: 400px;   /* مربع */
  height: 400px;  /* مربع */
  border-radius: 12px; /* زوايا ناعمة */
  display: flex;
  flex-direction: column;
  justify-content: center; /* توسيط عمودي */
  align-items: center;     /* توسيط أفقي */
  animation: fadeIn 2s ease-in-out;
}

/* الصورة المتحركة */
.hero img {
  width: 200px;   /* حجم مناسب للصورة داخل المربع */
  height: auto;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* العنوان */
.royal-title {
  font-size: 32px; /* حجم خط متناسب مع المربع */
  margin: 0;
}

/* النص الفرعي */
.royal-subtitle {
  font-size: 18px; /* حجم خط أصغر */
  margin-top: 10px;
}

/* تأثير دخول */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================= */
/* العناوين */
/* ========================= */
section h2 {
  color: #4a5d23; /* أخضر زيتوني */
  border-bottom: 2px solid #b87333;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center; /* توسيط العناوين */
}

/* ========================= */
/* الأزرار */
/* ========================= */
button {
  background-color: #1c2c44; /* كحلي */
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #b87333; /* برونزي */
  color: #fff;
}

/* ========================= */
/* الفوتر */
/* ========================= */
footer {
  background-color: #1c2c44; /* كحلي */
  color: #f4e9d8;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  border-top: 4px solid #b87333;
}

/* ========================= */
/* قسم التواصل */
/* ========================= */
.contact-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin: 10px 0 5px;
  font-weight: bold;
  color: #1c2c44;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  font-family: "Cairo", sans-serif;
}

.contact-form button {
  background-color: #1c2c44;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #b87333;
}

/* ========================= */
/* قسم المعرض */
/* ========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 250px;   /* حجم أصغر للصورة */
  height: auto;   /* يحافظ على التناسب الطبيعي */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05); /* تكبير بسيط عند المرور */
}

.gallery-item img:hover {
  transform: scale(1.05); /* تكبير بسيط عند المرور */
}
.project-gallery {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.project-item {
  width: 280px;
  text-align: center;
}

.project-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.project-item img:hover {
  transform: scale(1.05);
}

.project-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #1c2c44;
}
.gallery-section {
  background-image: url("images/background-heritage.jpg"); /* ضع هنا صورة الخلفية */
  background-size: cover;       /* تغطي كامل القسم */
  background-position: center;  /* تتمركز الصورة */
  padding: 60px 20px;           /* مسافة داخلية للنصوص */
  color: #1c2c44;                  /* النص أبيض حتى يبان فوق الخلفية */
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7); /* ظل للنصوص */
  
}
.hero {
  background: url("D:/my website/image/001125-TaqKasra-Iraq-IMG_7940-2.jpg") no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  background-color: rgba(0,0,0,0.5); /* خلفية شفافة */
  width: 400px;   /* مربع */
  height: 400px;  /* مربع */
  border-radius: 12px; /* زوايا ناعمة */
  display: flex;
  flex-direction: column;
  justify-content: center; /* توسيط عمودي */
  align-items: center;     /* توسيط أفقي */
  animation: fadeIn 2s ease-in-out;
}

/* الصورة المتحركة */
.hero img {
  width: 200px;   /* حجم مناسب للصورة داخل المربع */
  height: auto;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* العنوان */
.royal-title {
  font-size: 32px; /* حجم خط متناسب مع المربع */
  margin: 0;
}

/* النص الفرعي */
.royal-subtitle {
  font-size: 18px; /* حجم خط أصغر */
  margin-top: 10px;
}

/* تأثير دخول */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================= */
/* العناوين */
/* ========================= */
section h2 {
  color: #4a5d23; /* أخضر زيتوني */
  border-bottom: 2px solid #b87333;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center; /* توسيط العناوين */
}

/* ========================= */
/* الأزرار */
/* ========================= */
button {
  background-color: #1c2c44; /* كحلي */
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #b87333; /* برونزي */
  color: #fff;
}


/* قسم انضم إلينا */
.join-us {
  text-align: center;
  margin: 50px auto;
}

.join-us h2 {
  color: #1c2c44; /* كحلي */
  margin-bottom: 15px;
}

.join-us p {
  color: #3b2f2f; /* بني غامق */
  font-size: 18px;
  margin-bottom: 25px;
}

.team-gallery {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap; /* يخلي الصور تنزل سطر جديد إذا الشاشة صغيرة */
  margin-top: 20px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 150px;       /* حجم الصورة */
  height: 150px;      /* نفس الطول والعرض حتى تصير دائرية */
  object-fit: cover;  /* يضمن أن الصورة ما تنضغط */
  border-radius: 50%; /* يخلي الإطار دائري */
  border: 4px solid #b87333; /* إطار برونزي أنيق */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* ظل خفيف */
  transition: transform 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.1); /* تكبير بسيط عند المرور */
}

.team-member p {
  margin-top: 10px;
  font-weight: bold;
  color: #1c2c44; /* كحلي */
}
.join-us {
  text-align: center;
  margin: 50px auto;
}

.team-gallery {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.team-member {
  width: 200px;
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #b87333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.1);
}

.team-member h3 {
  margin-top: 10px;
  color: #1c2c44;
}

.team-member p {
  font-size: 14px;
  color: #3b2f2f;
}

/* فورمة الانضمام */
.join-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.join-form h2 {
  text-align: center;
  color: #1c2c44;
}

.join-form p {
  text-align: center;
  margin-bottom: 20px;
}

.join-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #1c2c44;
}

.join-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
}

.join-form button {
  background-color: #1c2c44;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.join-form button:hover {
  background-color: #b87333;
}
footer {
  background-color: #1c2c44; /* كحلي */
  color: #f4e9d8;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  border-top: 4px solid #b87333;
}
.video-container {
  display: flex;
  justify-content: center;   /* يوسّط الفيديو أفقياً */
  align-items: center;       /* يوسّط الفيديو عمودياً إذا عندك ارتفاع محدد */
  background-color: rgba(0, 0, 0, 0.3); /* خلفية شفافة */
  padding: 20px;
  border-radius: 10px;       /* زوايا ناعمة */
}

.video-container video {
  max-width: 80%;  /* يخلي الفيديو بحجم مناسب */
  border: 2px solid #fff; /* إطار أبيض بسيط */
  border-radius: 8px;
}
.project-item {
  display: flex;
  flex-direction: column; /* يخلي العناصر فوق وتحت */
  align-items: center;    /* يوسّط الفيديو والنص بالعرض */
  background-color: rgba(0, 0, 0, 0.3); /* خلفية شفافة */
  padding: 20px;
  border-radius: 10px;
}

.project-item video {
  max-width: 80%;
  margin-bottom: 10px; /* مسافة بين الفيديو والنص */
  border: 2px solid #fff;
  border-radius: 8px;
}

.re-logo {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: #f3f2f1;
  font-size: 26px;
}

.circle-arrow {
  position: absolute;
  top: -15px;   /* يضبط مكان الدائرة */
  left: -15px;
  width: 60px;  /* حجم مضبوط يحيط الكلمة */
  height: 60px;
}
.nav ul {
  list-style: none;     /* يشيل النقاط */
  padding: 0;
  margin: 0;
  display: flex;        /* يخلي العناصر أفقي */
  justify-content: center; /* يوسّطهم بالعرض */
  gap: 20px;            /* مسافة بين الأيقونات */
}

.nav li {
  display: inline-block;
}

.nav a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
}